From 77d285d446a5d0b35481e4e57730522475422dac Mon Sep 17 00:00:00 2001 From: oliskoli Date: Wed, 26 Jul 2006 20:05:50 +0000 Subject: [PATCH] Add missing semicolon at the end of a statement. git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@2267 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/gbfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/gbfile.c b/gpsbabel/gbfile.c index 147a4d4de..bbca7a24e 100644 --- a/gpsbabel/gbfile.c +++ b/gpsbabel/gbfile.c @@ -549,7 +549,7 @@ gbfputflt(const float f, gbfile *file) int gbfputcstr(const char *s, gbfile *file) { - return gbfwrite(s, 1, strlen(s) + 1, file) + return gbfwrite(s, 1, strlen(s) + 1, file); } int -- 2.30.2